home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / httpd5.conf < prev    next >
Text File  |  2005-06-19  |  35KB  |  1,024 lines

  1. #
  2. # Based upon the NCSA server configuration files originally by Rob McCool.
  3. #
  4. # This is the main Apache server configuration file.  It contains the
  5. # configuration directives that give the server its instructions.
  6. # See <URL:http://httpd.apache.org/docs-2.0/> for detailed information about
  7. # the directives.
  8. #
  9. # Do NOT simply read the instructions in here without understanding
  10. # what they do.  They're here only as hints or reminders.  If you are unsure
  11. # consult the online docs. You have been warned.
  12. #
  13. # The configuration directives are grouped into three basic sections:
  14. #  1. Directives that control the operation of the Apache server process as a
  15. #     whole (the 'global environment').
  16. #  2. Directives that define the parameters of the 'main' or 'default' server,
  17. #     which responds to requests that aren't handled by a virtual host.
  18. #     These directives also provide default values for the settings
  19. #     of all virtual hosts.
  20. #  3. Settings for virtual hosts, which allow Web requests to be sent to
  21. #     different IP addresses or hostnames and have them handled by the
  22. #     same Apache server process.
  23. #
  24. # Configuration and logfile names: If the filenames you specify for many
  25. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  26. # server will use that explicit path.  If the filenames do *not* begin
  27. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  28. # with ServerRoot set to "/usr/local/apache" will be interpreted by the
  29. # server as "/usr/local/apache/logs/foo.log".
  30. #
  31. # NOTE: Where filenames are specified, you must use forward slashes
  32. # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
  33. # If a drive letter is omitted, the drive on which Apache.exe is located
  34. # will be used by default.  It is recommended that you always supply
  35. # an explicit drive letter in absolute paths, however, to avoid
  36. # confusion.
  37. #
  38.  
  39. ### Section 1: Global Environment
  40. #
  41. # The directives in this section affect the overall operation of Apache,
  42. # such as the number of concurrent requests it can handle or where it
  43. # can find its configuration files.
  44. #
  45.  
  46. #
  47. # ServerRoot: The top of the directory tree under which the server's
  48. # configuration, error, and log files are kept.
  49. #
  50. # NOTE!  If you intend to place this on an NFS (or otherwise network)
  51. # mounted filesystem then please read the LockFile documentation
  52. # (available at <URL:http://httpd.apache.org/docs-2.0/mod/core.html#lockfile>);
  53. # you will save yourself a lot of trouble.
  54. #
  55. # Do NOT add a slash at the end of the directory path.
  56. #
  57. ServerRoot "/xampp/apache"
  58.  
  59. #
  60. # ScoreBoardFile: File used to store internal server process information.
  61. # If unspecified (the default), the scoreboard will be stored in an
  62. # anonymous shared memory segment, and will be unavailable to third-party
  63. # applications.
  64. # If specified, ensure that no two invocations of Apache share the same
  65. # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
  66. #
  67. #ScoreBoardFile logs/apache_runtime_status
  68.  
  69. #
  70. # PidFile: The file in which the server should record its process
  71. # identification number when it starts.
  72. #
  73. PidFile logs/httpd.pid
  74.  
  75. #
  76. # Timeout: The number of seconds before receives and sends time out.
  77. #
  78. Timeout 300
  79.  
  80. #
  81. # KeepAlive: Whether or not to allow persistent connections (more than
  82. # one request per connection). Set to "Off" to deactivate.
  83. #
  84. KeepAlive On
  85.  
  86. #
  87. # MaxKeepAliveRequests: The maximum number of requests to allow
  88. # during a persistent connection. Set to 0 to allow an unlimited amount.
  89. # We recommend you leave this number high, for maximum performance.
  90. #
  91. MaxKeepAliveRequests 100
  92.  
  93. #
  94. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  95. # same client on the same connection.
  96. #
  97. KeepAliveTimeout 15
  98.  
  99. ##
  100. ## Server-Pool Size Regulation (MPM specific)
  101. ##
  102.  
  103. # WinNT MPM
  104. # ThreadsPerChild: constant number of worker threads in the server process
  105. # MaxRequestsPerChild: maximum  number of requests a server process serves
  106. <IfModule mpm_winnt.c>
  107. ThreadsPerChild 250
  108. MaxRequestsPerChild  0
  109. </IfModule>
  110.  
  111. #
  112. # Listen: Allows you to bind Apache to specific IP addresses and/or
  113. # ports, in addition to the default. See also the <VirtualHost>
  114. # directive.
  115. #
  116. # Change this to Listen on specific IP addresses as shown below to
  117. # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
  118. #
  119. #Listen 12.34.56.78:80
  120. Listen 80
  121.  
  122.  
  123.  
  124. #
  125. # Dynamic Shared Object (DSO) Support
  126. #
  127. # To be able to use the functionality of a module which was built as a DSO you
  128. # have to place corresponding `LoadModule' lines at this location so the
  129. # directives contained in it are actually available _before_ they are used.
  130. # Statically compiled modules (those listed by `httpd -l') do not need
  131. # to be loaded here.
  132. #
  133. # Example:
  134. # LoadModule foo_module modules/mod_foo.so
  135. #
  136. LoadModule access_module modules/mod_access.so
  137. LoadModule actions_module modules/mod_actions.so
  138. LoadModule alias_module modules/mod_alias.so
  139. LoadModule asis_module modules/mod_asis.so
  140. LoadModule auth_module modules/mod_auth.so
  141. LoadModule auth_anon_module modules/mod_auth_anon.so
  142. LoadModule auth_dbm_module modules/mod_auth_dbm.so
  143. LoadModule auth_digest_module modules/mod_auth_digest.so
  144. #LoadModule mysql_auth_module modules/mod_auth_mysql.so
  145. #LoadModule auth_remote_module modules/mod_auth_remote.so
  146. LoadModule autoindex_module modules/mod_autoindex.so
  147. LoadModule cern_meta_module modules/mod_cern_meta.so
  148. LoadModule cgi_module modules/mod_cgi.so
  149. #LoadModule dav_module modules/mod_dav.so
  150. #LoadModule dav_fs_module modules/mod_dav_fs.so
  151. LoadModule dir_module modules/mod_dir.so
  152. LoadModule env_module modules/mod_env.so
  153. LoadModule expires_module modules/mod_expires.so
  154. LoadModule file_cache_module modules/mod_file_cache.so
  155. LoadModule headers_module modules/mod_headers.so
  156. LoadModule imap_module modules/mod_imap.so
  157. LoadModule include_module modules/mod_include.so
  158. LoadModule info_module modules/mod_info.so
  159. LoadModule isapi_module modules/mod_isapi.so
  160. LoadModule log_config_module modules/mod_log_config.so
  161. LoadModule mime_module modules/mod_mime.so
  162. #LoadModule mime_magic_module modules/mod_mime_magic.so
  163. LoadModule proxy_module modules/mod_proxy.so
  164. LoadModule proxy_connect_module modules/mod_proxy_connect.so
  165. LoadModule proxy_http_module modules/mod_proxy_http.so
  166. LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  167. LoadModule negotiation_module modules/mod_negotiation.so
  168. LoadModule rewrite_module modules/mod_rewrite.so
  169. LoadModule setenvif_module modules/mod_setenvif.so
  170. LoadModule speling_module modules/mod_speling.so
  171. LoadModule status_module modules/mod_status.so
  172. LoadModule unique_id_module modules/mod_unique_id.so
  173. LoadModule userdir_module modules/mod_userdir.so
  174. LoadModule usertrack_module modules/mod_usertrack.so
  175. LoadModule vhost_alias_module modules/mod_vhost_alias.so
  176.  
  177. ### For PhpBB and PhpEclipse support
  178. EnableSendfile Off
  179. EnableMMAP Off
  180.  
  181. <IfModule mod_dav.c>
  182. <IfModule mod_dav_fs.c>
  183. Include conf/moddav.conf
  184. </IfModule>
  185. </IfModule>
  186.  
  187. <IfModule mod_auth_mysql.c>
  188. Include conf/mod_auth_mysql.conf
  189. </IfModule>
  190.  
  191. <IfModule mod_auth_remote.c>
  192. <Directory "/xampp/htdocs/fonts/">
  193.  AllowOverride All
  194.  AuthType           Basic
  195.  AuthName           "AUTH REMOTE TEST"
  196.  AuthRemoteServer   127.0.0.1        # like www.home.net
  197.  AuthRemotePort     80
  198.  AuthRemoteURL      /forbidden/        # like www.home.net/forbidden/
  199.  require            valid-user
  200.  ##### user:pass
  201. </Directory>
  202. </IfModule>
  203.  
  204. Include conf/ssl.conf
  205.  
  206. LoadFile "/xampp/apache/bin/php5ts.dll"
  207. LoadModule php5_module "/xampp/apache/bin/php5apache2.dll"
  208.  
  209. Alias /webalizer "/xampp/webalizer/"
  210.  
  211.     <Directory "/xampp/webalizer/">
  212.         Options Indexes MultiViews ExecCGI
  213.         AddHandler cgi-script .cgi .exe
  214.         Order allow,deny
  215.         Allow from all
  216.     </Directory>
  217.  
  218.  
  219. #ScriptAlias /php/ "/xampp/php/"
  220.  
  221. AddType application/x-httpd-php .php .php4 .php3 .phtml
  222. #Action application/x-httpd-php "/php/php.exe"
  223.  
  224. Alias /phpmyadmin "/xampp/phpmyadmin/"
  225.  
  226.     <Directory "/xampp/phpMyAdmin/">
  227.         Options Indexes MultiViews ExecCGI
  228.         DirectoryIndex index.php
  229.         Order allow,deny
  230.         Allow from all
  231.     </Directory>
  232.  
  233.     Alias /excel "/xampp/htdocs/excel/"
  234.  
  235.     <Directory "/xampp/htdocs/excel/">
  236.         Options Indexes MultiViews ExecCGI
  237.         AddHandler cgi-script .cgi .exe
  238.         Order allow,deny
  239.         Allow from all
  240.     </Directory>
  241.     
  242.     Alias /pdf "/xampp/htdocs/pdf/"
  243.  
  244.     <Directory "/xampp/htdocs/pdf/">
  245.         Options Indexes MultiViews ExecCGI
  246.         AddHandler cgi-script .cgi .exe
  247.         Order allow,deny
  248.         Allow from all
  249.     </Directory>
  250.  
  251.     Alias /csimcache "/xampp/tmp/"
  252.  
  253.     <Directory "/xampp/tmp">
  254.         AllowOverride None
  255.         Order allow,deny
  256.         Allow from all
  257.     </Directory>
  258.  
  259. #
  260. # ExtendedStatus controls whether Apache will generate "full" status
  261. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  262. # Off) when the "server-status" handler is called. The default is Off.
  263. #
  264. #ExtendedStatus On
  265.  
  266. ### Section 2: 'Main' server configuration
  267. #
  268. # The directives in this section set up the values used by the 'main'
  269. # server, which responds to any requests that aren't handled by a
  270. # <VirtualHost> definition.  These values also provide defaults for
  271. # any <VirtualHost> containers you may define later in the file.
  272. #
  273. # All of these directives may appear inside <VirtualHost> containers,
  274. # in which case these default settings will be overridden for the
  275. # virtual host being defined.
  276. #
  277.  
  278. #
  279. # ServerAdmin: Your address, where problems with the server should be
  280. # e-mailed.  This address appears on some server-generated pages, such
  281. # as error documents.  e.g. admin@your-domain.com
  282. #
  283. ServerAdmin admin@localhost
  284.  
  285. #
  286. # ServerName gives the name and port that the server uses to identify itself.
  287. # This can often be determined automatically, but we recommend you specify
  288. # it explicitly to prevent problems during startup.
  289. #
  290. # If this is not set to valid DNS name for your host, server-generated
  291. # redirections will not work.  See also the UseCanonicalName directive.
  292. #
  293. # If your host doesn't have a registered DNS name, enter its IP address here.
  294. # You will have to access it by its address anyway, and this will make
  295. # redirections work in a sensible way.
  296. #
  297. ServerName localhost
  298.  
  299. #
  300. # UseCanonicalName: Determines how Apache constructs self-referencing
  301. # URLs and the SERVER_NAME and SERVER_PORT variables.
  302. # When set "Off", Apache will use the Hostname and Port supplied
  303. # by the client.  When set "On", Apache will use the value of the
  304. # ServerName directive.
  305. #
  306. UseCanonicalName Off
  307.  
  308. #
  309. # DocumentRoot: The directory out of which you will serve your
  310. # documents. By default, all requests are taken from this directory, but
  311. # symbolic links and aliases may be used to point to other locations.
  312. #
  313. DocumentRoot "/xampp/htdocs"
  314.  
  315. #
  316. # Each directory to which Apache has access can be configured with respect
  317. # to which services and features are allowed and/or disabled in that
  318. # directory (and its subdirectories).
  319. #
  320. # First, we configure the "default" to be a very restrictive set of
  321. # features.
  322. #
  323. <Directory />
  324.     Options FollowSymLinks
  325.     AllowOverride None
  326. </Directory>
  327.  
  328. #
  329. # Note that from this point forward you must specifically allow
  330. # particular features to be enabled - so if something's not working as
  331. # you might expect, make sure that you have specifically enabled it
  332. # below.
  333. #
  334.  
  335. #
  336. # This should be changed to whatever you set DocumentRoot to.
  337. #
  338. <Directory "/xampp/htdocs">
  339.  
  340. #
  341. # Possible values for the Options directive are "None", "All",
  342. # or any combination of:
  343. #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews
  344. #
  345. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  346. # doesn't give it to you.
  347. #
  348. # The Options directive is both complicated and important.  Please see
  349. # http://httpd.apache.org/docs-2.0/mod/core.html#options
  350. # for more information.
  351. #
  352.     Options Indexes FollowSymLinks MultiViews Includes ExecCGI
  353.     AddType text/html .shtml
  354.         AddHandler server-parsed .shtml
  355.         AddHandler cgi-script .cgi .pl
  356. # ReadmeName footer.html
  357. #
  358. # AllowOverride controls what directives may be placed in .htaccess files.
  359. # It can be "All", "None", or any combination of the keywords:
  360. #   Options FileInfo AuthConfig Limit
  361. #
  362.     AllowOverride All
  363.  
  364. #
  365. # Controls who can get stuff from this server.
  366. #
  367.     Order allow,deny
  368.     Allow from all
  369.  
  370. </Directory>
  371.  
  372. #
  373. # UserDir: The name of the directory that is appended onto a user's home
  374. # directory if a ~user request is received.  Be especially careful to use
  375. # proper, forward slashes here.
  376. #
  377. # UserDir "My Documents/My Website"
  378.  
  379. #
  380. # Control access to UserDir directories.  The following is an example
  381. # for a site where these directories are restricted to read-only.
  382. #
  383. # You must correct the path for the root to match your system's configured
  384. # user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
  385. # or whichever, as appropriate.
  386. #
  387. #<Directory "C:/Documents and Settings/*/My Documents/My Website">
  388. #    AllowOverride FileInfo AuthConfig Limit
  389. #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  390. #    <Limit GET POST OPTIONS PROPFIND>
  391. #        Order allow,deny
  392. #        Allow from all
  393. #    </Limit>
  394. #    <LimitExcept GET POST OPTIONS PROPFIND>
  395. #        Order deny,allow
  396. #        Deny from all
  397. #    </LimitExcept>
  398. #</Directory>
  399.  
  400. #
  401. # DirectoryIndex: sets the file that Apache will serve if a directory
  402. # is requested.
  403. #
  404. # The index.html.var file (a type-map) is used to deliver content-
  405. # negotiated documents.  The MultiViews Option can be used for the
  406. # same purpose, but it is much slower.
  407. #
  408. DirectoryIndex index.html index.htm index.php index.php4 index.php3 index.cgi index.pl index.html.var index.phtml
  409.  
  410. #
  411. # AccessFileName: The name of the file to look for in each directory
  412. # for access control information.  See also the AllowOverride directive.
  413. #
  414. AccessFileName .htaccess
  415.  
  416. #
  417. # The following lines prevent .htaccess and .htpasswd files from being
  418. # viewed by Web clients.
  419. #
  420. <Files ~ "^\.ht">
  421.     Order allow,deny
  422.     Deny from all
  423. </Files>
  424.  
  425. #
  426. # TypesConfig describes where the mime.types file (or equivalent) is
  427. # to be found.
  428. #
  429. TypesConfig conf/mime.types
  430.  
  431. #
  432. # DefaultType is the default MIME type the server will use for a document
  433. # if it cannot otherwise determine one, such as from filename extensions.
  434. # If your server contains mostly text or HTML documents, "text/plain" is
  435. # a good value.  If most of your content is binary, such as applications
  436. # or images, you may want to use "application/octet-stream" instead to
  437. # keep browsers from trying to display binary files as though they are
  438. # text.
  439. #
  440. DefaultType text/plain
  441.  
  442. #
  443. # The mod_mime_magic module allows the server to use various hints from the
  444. # contents of the file itself to determine its type.  The MIMEMagicFile
  445. # directive tells the module where the hint definitions are located.
  446. #
  447. <IfModule mod_mime_magic.c>
  448.     MIMEMagicFile conf/magic
  449. </IfModule>
  450.  
  451. #
  452. # HostnameLookups: Log the names of clients or just their IP addresses
  453. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  454. # The default is off because it'd be overall better for the net if people
  455. # had to knowingly turn this feature on, since enabling it means that
  456. # each client request will result in AT LEAST one lookup request to the
  457. # nameserver.
  458. #
  459. HostnameLookups Off
  460.  
  461. #
  462. # ErrorLog: The location of the error log file.
  463. # If you do not specify an ErrorLog directive within a <VirtualHost>
  464. # container, error messages relating to that virtual host will be
  465. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  466. # container, that host's errors will be logged there and not here.
  467. #
  468. ErrorLog logs/error.log
  469.  
  470. #
  471. # LogLevel: Control the number of messages logged to the error.log.
  472. # Possible values include: debug, info, notice, warn, error, crit,
  473. # alert, emerg.
  474. #
  475. LogLevel error
  476.  
  477. #
  478. # The following directives define some format nicknames for use with
  479. # a CustomLog directive (see below).
  480. #
  481. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  482. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  483. LogFormat "%{Referer}i -> %U" referer
  484. LogFormat "%{User-agent}i" agent
  485.  
  486. #
  487. # The location and format of the access logfile (Common Logfile Format).
  488. # If you do not define any access logfiles within a <VirtualHost>
  489. # container, they will be logged here.  Contrariwise, if you *do*
  490. # define per-<VirtualHost> access logfiles, transactions will be
  491. # logged therein and *not* in this file.
  492. #
  493. CustomLog logs/access.log common
  494.  
  495. #
  496. # If you would like to have agent and referer logfiles, uncomment the
  497. # following directives.
  498. #
  499. #CustomLog logs/referer.log referer
  500. #CustomLog logs/agent.log agent
  501.  
  502. #
  503. # If you prefer a single logfile with access, agent, and referer information
  504. # (Combined Logfile Format) you can use the following directive.
  505. #
  506. # CustomLog logs/access.log combined
  507.  
  508. #
  509. # Optionally add a line containing the server version and virtual host
  510. # name to server-generated pages (error documents, FTP directory listings,
  511. # mod_status and mod_info output etc., but not CGI generated documents).
  512. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  513. # Set to one of:  On | Off | EMail
  514. #
  515. ServerSignature On
  516.  
  517. #
  518. # Aliases: Add here as many aliases as you need (with no limit). The format is
  519. # Alias fakename realname
  520. #
  521. # Note that if you include a trailing / on fakename then the server will
  522. # require it to be present in the URL.  So "/icons" isn't aliased in this
  523. # example, only "/icons/".  If the fakename is slash-terminated, then the
  524. # realname must also be slash terminated, and if the fakename omits the
  525. # trailing slash, the realname must also omit it.
  526. #
  527. # We include the /icons/ alias for FancyIndexed directory listings.  If you
  528. # do not use FancyIndexing, you may comment this out.
  529. #
  530. Alias /icons/ "/xampp/apache/icons/"
  531.  
  532. <Directory "/xampp/apache/icons">
  533.     Options Indexes MultiViews
  534.     AllowOverride None
  535.     Order allow,deny
  536.     Allow from all
  537. </Directory>
  538.  
  539.  
  540. #
  541. # This should be changed to the ServerRoot/manual/.  The alias provides
  542. # the manual, even if you choose to move your DocumentRoot.  You may comment
  543. # this out if you do not care for the documentation.
  544. #
  545. #
  546. # ScriptAlias: This controls which directories contain server scripts.
  547. # ScriptAliases are essentially the same as Aliases, except that
  548. # documents in the realname directory are treated as applications and
  549. # run by the server when requested rather than as documents sent to the client.
  550. # The same rules about trailing "/" apply to ScriptAlias directives as to
  551. # Alias.
  552. #
  553. ScriptAlias /cgi-bin/ "/xampp/cgi-bin/"
  554.  
  555. #
  556. # "/xampp/apache/cgi-bin" should be changed to whatever your ScriptAliased
  557. # CGI directory exists, if you have that configured.
  558. #
  559. <Directory "/xampp/cgi-bin">
  560.     AllowOverride None
  561.     Options Includes ExecCGI
  562.         AddHandler server-parsed .shtml
  563.         AddHandler cgi-script .cgi .pl
  564.     Order allow,deny
  565.     Allow from all
  566. </Directory>
  567.  
  568. #
  569. # Redirect allows you to tell clients about documents which used to exist in
  570. # your server's namespace, but do not anymore. This allows you to tell the
  571. # clients where to look for the relocated document.
  572. # Example:
  573. # Redirect permanent /foo http://www.example.com/bar
  574.  
  575. #
  576. # Directives controlling the display of server-generated directory listings.
  577. #
  578.  
  579. #
  580. # FancyIndexing is whether you want fancy directory indexing or standard.
  581. # VersionSort is whether files containing version numbers should be
  582. # compared in the natural way, so that `apache-1.3.9.tar' is placed before
  583. # `apache-1.3.12.tar'.
  584. #
  585. IndexOptions FancyIndexing VersionSort
  586.  
  587. #
  588. # AddIcon* directives tell the server which icon to show for different
  589. # files or filename extensions.  These are only displayed for
  590. # FancyIndexed directories.
  591. #
  592. AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  593.  
  594. AddIconByType (TXT,/icons/text.gif) text/*
  595. AddIconByType (IMG,/icons/image2.gif) image/*
  596. AddIconByType (SND,/icons/sound2.gif) audio/*
  597. AddIconByType (VID,/icons/movie.gif) video/*
  598.  
  599. AddIcon /icons/binary.gif .bin .exe
  600. AddIcon /icons/binhex.gif .hqx
  601. AddIcon /icons/tar.gif .tar
  602. AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  603. AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  604. AddIcon /icons/a.gif .ps .ai .eps
  605. AddIcon /icons/layout.gif .html .shtml .htm .pdf
  606. AddIcon /icons/text.gif .txt
  607. AddIcon /icons/c.gif .c
  608. AddIcon /icons/p.gif .pl .py
  609. AddIcon /icons/f.gif .for
  610. AddIcon /icons/dvi.gif .dvi
  611. AddIcon /icons/uuencoded.gif .uu
  612. AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  613. AddIcon /icons/tex.gif .tex
  614. AddIcon /icons/bomb.gif core
  615.  
  616. AddIcon /icons/back.gif ..
  617. AddIcon /icons/hand.right.gif README
  618. AddIcon /icons/folder.gif ^^DIRECTORY^^
  619. AddIcon /icons/blank.gif ^^BLANKICON^^
  620.  
  621. #
  622. # DefaultIcon is which icon to show for files which do not have an icon
  623. # explicitly set.
  624. #
  625. DefaultIcon /icons/unknown.gif
  626.  
  627. #
  628. # AddDescription allows you to place a short description after a file in
  629. # server-generated indexes.  These are only displayed for FancyIndexed
  630. # directories.
  631. # Format: AddDescription "description" filename
  632. #
  633. #AddDescription "GZIP compressed document" .gz
  634. #AddDescription "tar archive" .tar
  635. #AddDescription "GZIP compressed tar archive" .tgz
  636.  
  637. #
  638. # ReadmeName is the name of the README file the server will look for by
  639. # default, and append to directory listings.
  640. #
  641. # HeaderName is the name of a file which should be prepended to
  642. # directory indexes.
  643. ReadmeName README.html
  644. HeaderName HEADER.html
  645.  
  646. #
  647. # IndexIgnore is a set of filenames which directory indexing should ignore
  648. # and not include in the listing.  Shell-style wildcarding is permitted.
  649. #
  650. IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  651.  
  652. #
  653. # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  654. # information on the fly. Note: Not all browsers support this.
  655. # Despite the name similarity, the following Add* directives have nothing
  656. # to do with the FancyIndexing customization directives above.
  657. #
  658. AddEncoding x-compress Z
  659. AddEncoding x-gzip gz tgz
  660.  
  661. #
  662. # DefaultLanguage and AddLanguage allows you to specify the language of
  663. # a document. You can then use content negotiation to give a browser a
  664. # file in a language the user can understand.
  665. #
  666. # Specify a default language. This means that all data
  667. # going out without a specific language tag (see below) will
  668. # be marked with this one. You probably do NOT want to set
  669. # this unless you are sure it is correct for all cases.
  670. #
  671. # * It is generally better to not mark a page as
  672. # * being a certain language than marking it with the wrong
  673. # * language!
  674. #
  675. # DefaultLanguage nl
  676. #
  677. # Note 1: The suffix does not have to be the same as the language
  678. # keyword --- those with documents in Polish (whose net-standard
  679. # language code is pl) may wish to use "AddLanguage pl .po" to
  680. # avoid the ambiguity with the common suffix for perl scripts.
  681. #
  682. # Note 2: The example entries below illustrate that in some cases
  683. # the two character 'Language' abbreviation is not identical to
  684. # the two character 'Country' code for its country,
  685. # E.g. 'Danmark/dk' versus 'Danish/da'.
  686. #
  687. # Note 3: In the case of 'ltz' we violate the RFC by using a three char
  688. # specifier. There is 'work in progress' to fix this and get
  689. # the reference data for rfc1766 cleaned up.
  690. #
  691. # Danish (da) - Dutch (nl) - English (en) - Estonian (et)
  692. # French (fr) - German (de) - Greek-Modern (el)
  693. # Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (ko)
  694. # Portugese (pt) - Luxembourgeois* (ltz)
  695. # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
  696. # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
  697. # Russian (ru) - Croatian (hr)
  698. #
  699. AddLanguage da .dk
  700. AddLanguage nl .nl
  701. AddLanguage en .en
  702. AddLanguage et .et
  703. AddLanguage fr .fr
  704. AddLanguage de .de
  705. AddLanguage he .he
  706. AddLanguage el .el
  707. AddLanguage it .it
  708. AddLanguage ja .ja
  709. AddLanguage pl .po
  710. AddLanguage ko .ko
  711. AddLanguage pt .pt
  712. AddLanguage nn .nn
  713. AddLanguage no .no
  714. AddLanguage pt-br .pt-br
  715. AddLanguage ltz .ltz
  716. AddLanguage ca .ca
  717. AddLanguage es .es
  718. AddLanguage sv .se
  719. AddLanguage cz .cz
  720. AddLanguage ru .ru
  721. AddLanguage tw .tw
  722. AddLanguage zh-tw .tw
  723. AddLanguage hr .hr
  724.  
  725. #
  726. # LanguagePriority allows you to give precedence to some languages
  727. # in case of a tie during content negotiation.
  728. #
  729. # Just list the languages in decreasing order of preference. We have
  730. # more or less alphabetized them here. You probably want to change this.
  731. #
  732. # LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw
  733.  
  734. #
  735. # ForceLanguagePriority allows you to serve a result page rather than
  736. # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
  737. # [in case no accepted languages matched the available variants]
  738. #
  739. # ForceLanguagePriority Prefer Fallback
  740.  
  741. #
  742. # Specify a default charset for all pages sent out. This is
  743. # always a good idea and opens the door for future internationalisation
  744. # of your web site, should you ever want it. Specifying it as
  745. # a default does little harm; as the standard dictates that a page
  746. # is in iso-8859-1 (latin1) unless specified otherwise i.e. you
  747. # are merely stating the obvious. There are also some security
  748. # reasons in browsers, related to javascript and URL parsing
  749. # which encourage you to always set a default char set.
  750. #
  751. AddDefaultCharset ISO-8859-1
  752.  
  753. #
  754. # Commonly used filename extensions to character sets. You probably
  755. # want to avoid clashes with the language extensions, unless you
  756. # are good at carefully testing your setup after each change.
  757. # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for
  758. # the official list of charset names and their respective RFCs
  759. #
  760. AddCharset ISO-8859-1  .iso8859-1 .latin1
  761. AddCharset ISO-8859-2  .iso8859-2 .latin2 .cen
  762. AddCharset ISO-8859-3  .iso8859-3 .latin3
  763. AddCharset ISO-8859-4  .iso8859-4 .latin4
  764. AddCharset ISO-8859-5  .iso8859-5 .latin5 .cyr .iso-ru
  765. AddCharset ISO-8859-6  .iso8859-6 .latin6 .arb
  766. AddCharset ISO-8859-7  .iso8859-7 .latin7 .grk
  767. AddCharset ISO-8859-8  .iso8859-8 .latin8 .heb
  768. AddCharset ISO-8859-9  .iso8859-9 .latin9 .trk
  769. AddCharset ISO-2022-JP .iso2022-jp .jis
  770. AddCharset ISO-2022-KR .iso2022-kr .kis
  771. AddCharset ISO-2022-CN .iso2022-cn .cis
  772. AddCharset Big5        .Big5       .big5
  773. # For russian, more than one charset is used (depends on client, mostly):
  774. AddCharset WINDOWS-1251 .cp-1251   .win-1251
  775. AddCharset CP866       .cp866
  776. AddCharset KOI8-r      .koi8-r .koi8-ru
  777. AddCharset KOI8-ru     .koi8-uk .ua
  778. AddCharset ISO-10646-UCS-2 .ucs2
  779. AddCharset ISO-10646-UCS-4 .ucs4
  780. AddCharset UTF-8       .utf8
  781.  
  782. # The set below does not map to a specific (iso) standard
  783. # but works on a fairly wide range of browsers. Note that
  784. # capitalization actually matters (it should not, but it
  785. # does for some browsers).
  786. #
  787. # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets
  788. # for a list of sorts. But browsers support few.
  789. #
  790. AddCharset GB2312      .gb2312 .gb
  791. AddCharset utf-7       .utf7
  792. AddCharset utf-8       .utf8
  793. AddCharset big5        .big5 .b5
  794. AddCharset EUC-TW      .euc-tw
  795. AddCharset EUC-JP      .euc-jp
  796. AddCharset EUC-KR      .euc-kr
  797. AddCharset shift_jis   .sjis
  798.  
  799. #
  800. # AddType allows you to add to or override the MIME configuration
  801. # file mime.types for specific file types.
  802. #
  803. AddType application/x-tar .tgz
  804. #AddType text/html .shtml
  805. #AddHandler server-parsed .shtml
  806.  
  807.  
  808. #
  809. # AddHandler allows you to map certain file extensions to "handlers":
  810. # actions unrelated to filetype. These can be either built into the server
  811. # or added with the Action directive (see below)
  812. #
  813. # To use CGI scripts outside of ScriptAliased directories:
  814. # (You will also need to add "ExecCGI" to the "Options" directive.)
  815. #
  816. #AddHandler cgi-script .cgi
  817.  
  818. #
  819. # For files that include their own HTTP headers:
  820. #
  821. #AddHandler send-as-is asis
  822.  
  823. #
  824. # For server-parsed imagemap files:
  825. #
  826. #AddHandler imap-file map
  827.  
  828. #
  829. # For type maps (negotiated resources):
  830. # (This is enabled by default to allow the Apache "It Worked" page
  831. #  to be distributed in multiple languages.)
  832. #
  833. AddHandler type-map var
  834.  
  835. # Filters allow you to process content before it is sent to the client.
  836. #
  837. # To parse .shtml files for server-side includes (SSI):
  838. # (You will also need to add "Includes" to the "Options" directive.)
  839. #
  840. #AddOutputFilter INCLUDES .shtml
  841.  
  842. #
  843. # Action lets you define media types that will execute a script whenever
  844. # a matching file is called. This eliminates the need for repeated URL
  845. # pathnames for oft-used CGI file processors.
  846. # Format: Action media/type /cgi-script/location
  847. # Format: Action handler-name /cgi-script/location
  848. #
  849.  
  850. #
  851. # Customizable error responses come in three flavors:
  852. # 1) plain text 2) local redirects 3) external redirects
  853. #
  854. # Some examples:
  855. #ErrorDocument 500 "The server made a boo boo."
  856. #ErrorDocument 404 /missing.html
  857. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  858. #ErrorDocument 402 http://www.example.com/subscription_info.html
  859. #
  860.  
  861. #
  862. # Putting this all together, we can Internationalize error responses.
  863. #
  864. # We use Alias to redirect any /error/HTTP_<error>.html.var response to
  865. # our collection of by-error message multi-language collections.  We use
  866. # includes to substitute the appropriate text.
  867. #
  868. # You can modify the messages' appearance without changing any of the
  869. # default HTTP_<error>.html.var files by adding the line;
  870. #
  871. #   Alias /error/include/ "/your/include/path/"
  872. #
  873. # which allows you to create your own set of files by starting with the
  874. # /xampp/apache/error/include/ files and
  875. # copying them to /your/include/path/, even on a per-VirtualHost basis.
  876. #
  877.  
  878. <IfModule mod_negotiation.c>
  879. <IfModule mod_include.c>
  880.     Alias /error/ "/xampp/apache/error/"
  881.  
  882.     <Directory "/xampp/apache/error">
  883.         AllowOverride None
  884.         Options IncludesNoExec
  885.         AddOutputFilter Includes html
  886.         AddHandler type-map var
  887.         Order allow,deny
  888.         Allow from all
  889.         LanguagePriority en es de fr
  890.         ForceLanguagePriority Prefer Fallback
  891.     </Directory>
  892.  
  893.     ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
  894.     ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
  895.     ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
  896.     ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
  897.     ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
  898.     ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
  899.     ErrorDocument 410 /error/HTTP_GONE.html.var
  900.     ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
  901.     ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
  902.     ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
  903.     ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
  904.     ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var
  905.     ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
  906.     ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
  907.     ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
  908.     ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
  909.     ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
  910.  
  911. </IfModule>
  912. </IfModule>
  913.  
  914. #
  915. # The following directives modify normal HTTP response behavior to
  916. # handle known problems with browser implementations.
  917. #
  918. BrowserMatch "Mozilla/2" nokeepalive
  919. BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  920. BrowserMatch "RealPlayer 4\.0" force-response-1.0
  921. BrowserMatch "Java/1\.0" force-response-1.0
  922. BrowserMatch "JDK/1\.0" force-response-1.0
  923.  
  924. #
  925. # The following directive disables redirects on non-GET requests for
  926. # a directory that does not include the trailing slash.  This fixes a
  927. # problem with Microsoft WebFolders which does not appropriately handle
  928. # redirects for folders with DAV methods.
  929. #
  930. BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
  931. BrowserMatch "^WebDrive" redirect-carefully
  932.  
  933. #
  934. # Allow server status reports, with the URL of http://servername/server-status
  935. # Change the ".localhost" to match your domain to enable.
  936. #
  937. #<Location /server-status>
  938. #    SetHandler server-status
  939. #    Order deny,allow
  940. #    Deny from all
  941. #    Allow from .localhost
  942. #</Location>
  943.  
  944. #
  945. # Allow remote server configuration reports, with the URL of
  946. #  http://servername/server-info (requires that mod_info.c be loaded).
  947. # Change the ".your-domain.com" to match your domain to enable.
  948. #
  949. #<Location /server-info>
  950. #    SetHandler server-info
  951. #    Order deny,allow
  952. #    Deny from all
  953. #    Allow from .localhost
  954. #</Location>
  955.  
  956. #
  957. # Proxy Server directives. Uncomment the following lines to
  958. # enable the proxy server:
  959. #
  960. #<IfModule mod_proxy.c>
  961. #ProxyRequests On
  962. #
  963. #<Proxy *>
  964. #    Order deny,allow
  965. #    Deny from all
  966. #    Allow from .your-domain.com
  967. #</Proxy>
  968.  
  969. #
  970. # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  971. # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  972. # Set to one of: Off | On | Full | Block
  973. #
  974. #ProxyVia On
  975.  
  976. #
  977. # To enable the cache as well, edit and uncomment the following lines:
  978. # (no cacheing without CacheRoot)
  979. #
  980. #CacheRoot "/xampp/apache/proxy"
  981. #CacheSize 5
  982. #CacheGcInterval 4
  983. #CacheMaxExpire 24
  984. #CacheLastModifiedFactor 0.1
  985. #CacheDefaultExpire 1
  986. #NoCache a-domain.com another-domain.edu joes.garage-sale.com
  987.  
  988. #</IfModule>
  989. # End of proxy directives.
  990.  
  991.  
  992.  
  993. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  994. # machine you can setup VirtualHost containers for them. Most configurations
  995. # use only name-based virtual hosts so the server doesn't need to worry about
  996. # IP addresses. This is indicated by the asterisks in the directives below.
  997. #
  998. # Please see the documentation at
  999. # <URL:http://httpd.apache.org/docs-2.0/vhosts/>
  1000. # for further details before you try to setup virtual hosts.
  1001. #
  1002. # You may use the command line option '-S' to verify your virtual host
  1003. # configuration.
  1004.  
  1005. #
  1006. # Use name-based virtual hosting.
  1007. #
  1008. #NameVirtualHost *
  1009.  
  1010. #
  1011. # VirtualHost example:
  1012. # Almost any Apache directive may go into a VirtualHost container.
  1013. # The first VirtualHost section is used for requests without a known
  1014. # server name.
  1015. #
  1016. #<VirtualHost *>
  1017. #    ServerAdmin webmaster@dummy-host.example.com
  1018. #    DocumentRoot /www/docs/dummy-host.example.com
  1019. #    ServerName dummy-host.example.com
  1020. #    ErrorLog logs/dummy-host.example.com-error_log
  1021. #    CustomLog logs/dummy-host.example.com-access_log common
  1022. #</VirtualHost>
  1023.  
  1024. Win32DisableAcceptEx ON